projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f787cf
)
(Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
author
Ken Raeburn
<raeburn@raeburn.org>
Thu, 8 Aug 2002 16:59:23 +0000
(16:59 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Thu, 8 Aug 2002 16:59:23 +0000
(16:59 +0000)
src/ChangeLog
patch
|
blob
|
history
src/coding.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 85064397cf1696a6a734e6083634be63b0f38671..8c87db2054041867922cf43ee4de31b05689567e 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,8
@@
+2002-08-08 Ken Raeburn <raeburn@mit.edu>
+
+ * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int
+ mixup.
+
2002-08-08 Kenichi Handa <handa@etl.go.jp>
* coding.c (Ffind_operation_coding_system): For write-region, if
diff --git
a/src/coding.c
b/src/coding.c
index 952fc1408f5720872bb8a7451bc0098e333df0de..57d7e4b21fdf3cb5d0bc979263c11666648726e7 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-6884,7
+6884,7
@@
usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */)
if (EQ (operation, Qwrite_region)
&& nargs > 5
&& STRINGP (args[5]))
- target_idx =
4
;
+ target_idx =
make_number (4)
;
target = args[XINT (target_idx) + 1];
if (!(STRINGP (target)
|| (EQ (operation, Qopen_network_stream) && INTEGERP (target))))